home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / intellipeer_disclosure.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  67 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(14829);
  8.  script_bugtraq_id(11257);
  9.  script_version ("$Revision: 1.1 $");
  10.  name["english"] = "Intellipeer POP3 server user account enumeration";
  11.  script_name(english:name["english"]);
  12.  
  13.  desc["english"] = "
  14. The remote POP3 server (probably intellipeer pop3 server) is vulnerable to
  15. an account enumeration issue.
  16.  
  17. If an attacker attempts to log into the remote host by submitting a bogus
  18. username, then the server will reply with a specific error message if the
  19. account is non-existant, while it will reply with another message if the
  20. account exists.
  21.  
  22. An attacker may use this flaw to set up a brute force attack against the
  23. remote server to obtain a list of valid user names and accounts.
  24.  
  25. Solution : Upgrade to the newest version of this server or change it
  26. Risk factor : Medium";
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Checks for a flaw in Intellipeer pop3";
  31.  script_summary(english:summary["english"]);
  32.  
  33.  script_category(ACT_GATHER_INFO);
  34.  
  35.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  36.  family["english"] = "Misc.";
  37.  script_family(english:family["english"]);
  38.  
  39.  script_dependencie("find_service.nes");
  40.  script_require_ports("Services/pop3", 110);
  41.  exit(0);
  42. }
  43.  
  44. #
  45. # The script code starts here
  46. #
  47. include("misc_func.inc");
  48.  
  49. port = get_kb_item("Services/pop3");
  50. if(!port) port = 110;
  51. if ( ! get_port_state(port) ) exit(0);
  52.  
  53. soc = open_sock_tcp(port);
  54. if ( ! soc ) exit(0);
  55.  
  56. banner = recv_line(socket:soc, length:4096);
  57. if ( ! banner ) exit(0);
  58. if ("POP3 server ready <" >!< banner ) exit(0);
  59. send(socket:soc, data:'USER nessus' + rand() + '\r\n');
  60. rep = recv_line(socket:soc, length:4096);
  61. if ( ! rep ) exit(0);
  62. if (egrep(pattern:"^-ERR nessus[0-9]* unknown account", string:rep) )
  63. {
  64.  security_warning(port);
  65. }
  66.  
  67.